home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 April / macformat-049.iso / mac / Shareware Plus / Education / Memory Game Show© / Memory Game Show©.rsrc / STR#_5000.txt < prev    next >
Encoding:
Text File  |  1997-02-10  |  1.4 KB  |  144 lines

  1. function...=function xxx
  2. |
  3. end xxx
  4.  
  5. if...then...else...end=if | then
  6. xxx
  7. else
  8. xxx
  9. end if
  10.  
  11. if...then...else=if | then
  12. xxx
  13. else xxx
  14.  
  15. if...then...end=if | then
  16. xxx
  17. end if
  18.  
  19. if...then=if | then xxx 
  20.  
  21. switch...case...end=switch |
  22. case
  23. xxx
  24. end switch
  25.  
  26. lockmenus...=set lockmenus to true
  27. |
  28. set lockmenus to false
  29.  
  30. lockmessages...=set lockmessages to true
  31. |
  32. set lockmessages to false
  33.  
  34. lockscreen...=set lockscreen to true
  35. |
  36. set lockscreen to false
  37.  
  38. on ...=on xxx
  39. |
  40. end xxx
  41.  
  42. on closeBackground...=on closeBackground
  43. |
  44. end closeBackground
  45.  
  46. on closeCard...=on closeCard
  47. |
  48. end closeCard
  49.  
  50. on closeProject...=on closeProject
  51. |
  52. end closeProject
  53.  
  54. on closeWindow...=on closeWindow
  55. |
  56. end closeWindow
  57.  
  58. on idle...=on idle
  59. |
  60. end idle
  61.  
  62. on mouseDown...=on mouseDown
  63. |
  64. end mouseDown
  65.  
  66. on mouseStillDown=on mouseStillDown
  67. |
  68. end mouseStillDown
  69.  
  70. on mouseUp...=on mouseUp
  71. |
  72. end mouseUp
  73.  
  74. on openBackground...=on openBackground
  75. |
  76. end openBackground
  77.  
  78. on openCard...=on openCard
  79. |
  80. end openCard
  81.  
  82. on openProject...=on openProject
  83. |
  84. end openProject
  85.  
  86. on openWindow...=on openWindow
  87. |
  88. end openWindow
  89.  
  90. on startUp...=on startUp
  91. |
  92. end startUp
  93.  
  94. repeat ...=repeat
  95. |
  96. end repeat
  97.  
  98. repeat for...=repeat for | times
  99.  
  100. end repeat
  101.  
  102. repeat until..=repeat until |
  103.  
  104. end repeat
  105.  
  106. repeat while...=repeat while |
  107.  
  108. end repeat
  109.  
  110. repeat with...=repeat with | = xxx to xxx
  111.  
  112. end repeat
  113.  
  114. --
  115.  
  116. do
  117.  
  118. else
  119.  
  120. end
  121.  
  122. exit
  123.  
  124. function
  125.  
  126. global
  127.  
  128. if
  129.  
  130. next
  131.  
  132. on
  133.  
  134. pass
  135.  
  136. repeat
  137.  
  138. return
  139.  
  140. send
  141.  
  142. then
  143.  
  144.